home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / std.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  9KB  |  221 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* std.h */
  20. /* Standard definitions for Aladdin Enterprises code */
  21.  
  22. #ifndef std_INCLUDED
  23. #  define std_INCLUDED
  24.  
  25. #include "stdpre.h"
  26.  
  27. /* Include the architecture definitions. */
  28. #include "arch.h"
  29.  
  30. /* Define integer data type sizes in terms of log2s. */
  31. #define arch_sizeof_short (1 << arch_log2_sizeof_short)
  32. #define arch_sizeof_int (1 << arch_log2_sizeof_int)
  33. #define arch_sizeof_long (1 << arch_log2_sizeof_long)
  34. #define arch_ints_are_short (arch_sizeof_int == arch_sizeof_short)
  35.  
  36. /* Define whether we are on a large- or small-memory machine. */
  37. /* Currently, we assume small memory and 16-bit ints are synonymous. */
  38. #define arch_small_memory (arch_sizeof_int <= 2)
  39.  
  40. /* Define unsigned 16- and 32-bit types.  These are needed in */
  41. /* a surprising number of places that do bit manipulation. */
  42. #if arch_sizeof_short == 2    /* no plausible alternative! */
  43. typedef ushort bits16;
  44. #endif
  45. #if arch_sizeof_int == 4
  46. typedef uint bits32;
  47. #else
  48. # if arch_sizeof_long == 4
  49. typedef ulong bits32;
  50. # endif
  51. #endif
  52.  
  53. /* Minimum and maximum values for the signed types. */
  54. /* Avoid casts, to make them acceptable to strict ANSI compilers. */
  55. #define min_short (-1 << (arch_sizeof_short * 8 - 1))
  56. #define max_short (~min_short)
  57. #define min_int (-1 << (arch_sizeof_int * 8 - 1))
  58. #define max_int (~min_int)
  59. #define min_long (-1L << (arch_sizeof_long * 8 - 1))
  60. #define max_long (~min_long)
  61.  
  62. /*
  63.  * The maximum values for the unsigned types are defined in arch.h,
  64.  * because so many compilers handle unsigned constants wrong.
  65.  * In particular, most of the DEC VMS compilers incorrectly sign-extend
  66.  * short unsigned constants (but not short unsigned variables) when
  67.  * widening them to longs.  We program around this on a case-by-case basis.
  68.  * Some compilers don't truncate constants when they are cast down.
  69.  * The UTek compiler does special weird things of its own.
  70.  * All the rest (including gcc on all platforms) do the right thing.
  71.  */
  72. #define max_uchar arch_max_uchar
  73. #define max_ushort arch_max_ushort
  74. #define max_uint arch_max_uint
  75. #define max_ulong arch_max_ulong
  76.  
  77. /* Minimum and maximum values for pointers. */
  78. #if arch_ptrs_are_signed
  79. #  define min_ptr min_long
  80. #  define max_ptr max_long
  81. #else
  82. #  define min_ptr ((ulong)0)
  83. #  define max_ptr max_ulong
  84. #endif
  85.  
  86. /*
  87.  * Define whether pointers are segmented.  If they are, we assume that
  88.  * the compiler can't do reasonable register assignment for pointers,
  89.  * so sometimes we use in-line casts instead of assignment to
  90.  * a logically redundant pointer of the proper type.
  91.  */
  92. #define arch_ptrs_are_segmented (arch_sizeof_ds_ptr < arch_sizeof_ptr)
  93.  
  94. /* Define a reliable arithmetic right shift. */
  95. /* Must use arith_rshift_1 for a shift by a literal 1. */
  96. #define arith_rshift_slow(x,n) ((x) < 0 ? ~(~(x) >> (n)) : (x) >> (n))
  97. #if arch_arith_rshift == 2
  98. #  define arith_rshift(x,n) ((x) >> (n))
  99. #  define arith_rshift_1(x) ((x) >> 1)
  100. #else
  101. #if arch_arith_rshift == 1        /* OK except for n=1 */
  102. #  define arith_rshift(x,n) ((x) >> (n))
  103. #  define arith_rshift_1(x) arith_rshift_slow(x,1)
  104. #else
  105. #  define arith_rshift(x,n) arith_rshift_slow(x,n)
  106. #  define arith_rshift_1(x) arith_rshift_slow(x,1)
  107. #endif
  108. #endif
  109.  
  110. /*
  111.  * Standard error printing macros.
  112.  * Use dprintf for messages that just go to dstderr,
  113.  * eprintf for error messages to estderr that include the program name,
  114.  * lprintf for debugging messages that should include line number info.
  115.  * Since we intercept fprintf to redirect output under MS Windows,
  116.  * we have to define dputc and dputs in terms of fprintf also.
  117.  * We also define eprintf and lprintf in a way that allows us to
  118.  * intercept all calls to them by redefining eprintf_program_name
  119.  * and lprintf_file_and_line.
  120.  */
  121.  
  122. /* dstderr and estderr may be redefined. */
  123. #define dstderr stderr
  124. #define estderr stderr
  125.  
  126. #define dputc(chr) dprintf1("%c", chr)
  127. #define dputs(str) dprintf1("%s", str)
  128. #define dprintf(str)\
  129.   fprintf(dstderr, str)
  130. #define dprintf1(str,arg1)\
  131.   fprintf(dstderr, str, arg1)
  132. #define dprintf2(str,arg1,arg2)\
  133.   fprintf(dstderr, str, arg1, arg2)
  134. #define dprintf3(str,arg1,arg2,arg3)\
  135.   fprintf(dstderr, str, arg1, arg2, arg3)
  136. #define dprintf4(str,arg1,arg2,arg3,arg4)\
  137.   fprintf(dstderr, str, arg1, arg2, arg3, arg4)
  138. #define dprintf5(str,arg1,arg2,arg3,arg4,arg5)\
  139.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5)
  140. #define dprintf6(str,arg1,arg2,arg3,arg4,arg5,arg6)\
  141.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6)
  142. #define dprintf7(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7)\
  143.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7)
  144. #define dprintf8(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8)\
  145.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)
  146. #define dprintf9(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9)\
  147.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
  148. #define dprintf10(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10)\
  149.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
  150. #define dprintf11(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11)\
  151.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11)
  152. #define dprintf12(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12)\
  153.   fprintf(dstderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12)
  154.  
  155. /* eprintf_program_name may be redefined. */
  156. #define eprintf_program_name(f, program_name)\
  157.   fprintf(f, "%s: ", program_name)
  158. #ifdef PROGRAM_NAME
  159. extern const char *PROGRAM_NAME;
  160. #  define _epn eprintf_program_name(estderr, PROGRAM_NAME),
  161. #else
  162. #  define _epn /* */
  163. #endif
  164.  
  165. #define eprintf(str)\
  166.   (_epn fprintf(estderr, str))
  167. #define eprintf1(str,arg1)\
  168.   (_epn fprintf(estderr, str, arg1))
  169. #define eprintf2(str,arg1,arg2)\
  170.   (_epn fprintf(estderr, str, arg1, arg2))
  171. #define eprintf3(str,arg1,arg2,arg3)\
  172.   (_epn fprintf(estderr, str, arg1, arg2, arg3))
  173. #define eprintf4(str,arg1,arg2,arg3,arg4)\
  174.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4))
  175. #define eprintf5(str,arg1,arg2,arg3,arg4,arg5)\
  176.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5))
  177. #define eprintf6(str,arg1,arg2,arg3,arg4,arg5,arg6)\
  178.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6))
  179. #define eprintf7(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7)\
  180.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7))
  181. #define eprintf8(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8)\
  182.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8))
  183. #define eprintf9(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9)\
  184.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9))
  185. #define eprintf10(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10)\
  186.   (_epn fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10))
  187.  
  188. /* lprintf_file_and_line may be redefined. */
  189. #define lprintf_file_and_line(f, file, line)\
  190.   fprintf(f, "%s(%d): ", file, line)
  191. #if __LINE__                /* compiler provides it */
  192. #  define _epl _epn lprintf_file_and_line(estderr, __FILE__, __LINE__),
  193. #else
  194. #  define _epl _epn
  195. #endif
  196.  
  197. #define lprintf(str)\
  198.   (_epl fprintf(estderr, str))
  199. #define lprintf1(str,arg1)\
  200.   (_epl fprintf(estderr, str, arg1))
  201. #define lprintf2(str,arg1,arg2)\
  202.   (_epl fprintf(estderr, str, arg1, arg2))
  203. #define lprintf3(str,arg1,arg2,arg3)\
  204.   (_epl fprintf(estderr, str, arg1, arg2, arg3))
  205. #define lprintf4(str,arg1,arg2,arg3,arg4)\
  206.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4))
  207. #define lprintf5(str,arg1,arg2,arg3,arg4,arg5)\
  208.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5))
  209. #define lprintf6(str,arg1,arg2,arg3,arg4,arg5,arg6)\
  210.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6))
  211. #define lprintf7(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7)\
  212.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7))
  213. #define lprintf8(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8)\
  214.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8))
  215. #define lprintf9(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9)\
  216.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9))
  217. #define lprintf10(str,arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10)\
  218.   (_epl fprintf(estderr, str, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10))
  219.  
  220. #endif                    /* std_INCLUDED */
  221.